home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / hugearr.zip / HUGEARR.BAS next >
BASIC Source File  |  1992-04-02  |  2KB  |  19 lines

  1. '########## HUGEARR -- Huge Array Functions -- Module
  2. 'This declaration file contains the original names for these functions.
  3. Declare Function HugeDim% Lib "hugearr.dll" Alias "VBHugeDim" (ByVal recsize%, ByVal limit&)
  4. Declare Function HugeRedim% Lib "hugearr.dll" Alias "VBHugeRedim" (ByVal hArray%, ByVal limit&)
  5. Declare Function HugeErase% Lib "hugearr.dll" Alias "VBHugeErase" (ByVal hArray%)
  6. Declare Function GetHugeEl% Lib "hugearr.dll" Alias "VBHugeGet" (ByVal Index%, ByVal el&, buffer As Any)
  7. Declare Function GetHugeNEl% Lib "hugearr.dll" Alias "VBHugeGetNum" (ByVal Index%, ByVal el&, ByVal nelem%, buffer As Any)
  8. Declare Function HugeInt% Lib "hugearr.dll" Alias "VBHugeGetInt" (ByVal hArray%, ByVal el&)
  9. Declare Function HugeLong& Lib "hugearr.dll" Alias "VBHugeGetLong" (ByVal hArray%, ByVal el&)
  10. Declare Function HugeSingle! Lib "hugearr.dll" Alias "VBHugeGetSingle" (ByVal hArray%, ByVal el&)
  11. Declare Function HugeDouble# Lib "hugearr.dll" Alias "VBHugeGetDouble" (ByVal hArray%, ByVal el&)
  12. Declare Function HugeCurrency@ Lib "hugearr.dll" Alias "VBHugeGetCurrency" (ByVal hArray%, ByVal el&)
  13. Declare Function NumHugeArrays% Lib "hugearr.dll" Alias "VBHugeNumArrays" ()
  14. Declare Function HugeUbound& Lib "hugearr.dll" Alias "VBHugeUBound" (ByVal hArray%)
  15. Declare Function HugeLoad& Lib "hugearr.dll" Alias "VBHugeLoad" (ByVal hArray%, ByVal RecLen%, ByVal Fn$)
  16. Declare Function HugeSave& Lib "hugearr.dll" Alias "VBHugeSave" (ByVal hArray%, ByVal NEl&, ByVal RecLen%, ByVal Fn$)
  17. Declare Function SetHugeEl% Lib "hugearr.dll" Alias "VBHugeSet" (ByVal Index%, ByVal el&, buffer As Any)
  18. Declare Function SetHugeNEl% Lib "hugearr.dll" Alias "VBHugeSetNum" (ByVal Index%, ByVal el&, ByVal nelem%, buffer As Any)
  19.